Skip to main content

All Questions

Tagged with
2votes
2answers
2kviews

Cost calculator for room bookings, based on file or user input

The application I would like help with is a booking calculation tool that runs a few simple calculations in order to work out the cost of someone's stay. It currently contains only two java files, ...
NoDirection's user avatar
23votes
3answers
3kviews

Parsing log files of HearthStone: The log reading API

I'm still working on a parser that can parse log entries from a game called HearthStone, the overall idea is that it will read the log file live when the game is running, parses the log file and show ...
skiwi's user avatar
  • 10.7k
6votes
2answers
214views

Extensible Abstract Log Reader

My goal with the following code is to provide an extensible class that can be extended in order to read log files and transforms them into meaningful output. I'd like to have comments about the code ...
skiwi's user avatar
  • 10.7k
1vote
2answers
5kviews

Reading columns of a delimited text file

This class reads a delimited text file into String arrays on demand. Delimiter can be any regex. Features include: Read a single column Read a range of columns Read arbitrary columns by providing an ...
qed's user avatar
  • 1,439
0votes
1answer
1kviews

Read first column of a space delimited file with Java 8 stream

Code: ...
qed's user avatar
  • 1,439
2votes
1answer
63views

A Java class for reading MaCH dosage files v2.0

Version 2 of A Java class for reading MaCH dosage files ...
qed's user avatar
  • 1,439
3votes
1answer
100views

A Java class for reading MaCH dosage files

A dosage file (used in computational genetics) is formatted like this: ...
qed's user avatar
  • 1,439
7votes
2answers
2kviews

Speed up CSV reading code (vector of doubles)

I am trying to read a single-columned CSV of doubles into Java with a string header. It is 11 megabytes and takes over 15 minutes to read, which is clearly ...
user2763361's user avatar

close